home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK1.toast / Development Kits (Disc 1) / Interfaces&Libraries / Universal / Interfaces / PInterfaces / Packages.p < prev    next >
Encoding:
Text File  |  1998-02-12  |  1.6 KB  |  73 lines  |  [TEXT/MPS ]

  1. {
  2.      File:        Packages.p
  3.  
  4.      Contains:    Package Manager Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.1
  8.  
  9.      Copyright:    © 1985-1993, 1995, 1997-1998 by Apple Computer, Inc., all rights reserved
  10.  
  11.      Bugs?:        Please include the the file and version information (from above) with
  12.                  the problem description.  Developers belonging to one of the Apple
  13.                  developer programs can submit bug reports to:
  14.  
  15.                      devsupport@apple.com
  16.  
  17. }
  18. {$IFC UNDEFINED UsingIncludes}
  19. {$SETC UsingIncludes := 0}
  20. {$ENDC}
  21.  
  22. {$IFC NOT UsingIncludes}
  23.  UNIT Packages;
  24.  INTERFACE
  25. {$ENDC}
  26.  
  27. {$IFC UNDEFINED __PACKAGES__}
  28. {$SETC __PACKAGES__ := 1}
  29.  
  30. {$I+}
  31. {$SETC PackagesIncludes := UsingIncludes}
  32. {$SETC UsingIncludes := 1}
  33.  
  34. {$IFC UNDEFINED __MACTYPES__}
  35. {$I MacTypes.p}
  36. {$ENDC}
  37.  
  38.  
  39. {$PUSH}
  40. {$ALIGN MAC68K}
  41. {$LibExport+}
  42.  
  43.  
  44. CONST
  45.     listMgr                        = 0;                            {  list manager  }
  46.     dskInit                        = 2;                            {  Disk Initializaton  }
  47.     stdFile                        = 3;                            {  Standard File  }
  48.     flPoint                        = 4;                            {  Floating-Point Arithmetic  }
  49.     trFunc                        = 5;                            {  Transcendental Functions  }
  50.     intUtil                        = 6;                            {  International Utilities  }
  51.     bdConv                        = 7;                            {  Binary/Decimal Conversion  }
  52.     editionMgr                    = 11;                            {  Edition Manager  }
  53.  
  54. PROCEDURE InitPack(packID: INTEGER);
  55.     {$IFC TARGET_OS_MAC AND TARGET_CPU_68K AND NOT TARGET_RT_MAC_CFM}
  56.     INLINE $A9E5;
  57.     {$ENDC}
  58. PROCEDURE InitAllPacks;
  59.     {$IFC TARGET_OS_MAC AND TARGET_CPU_68K AND NOT TARGET_RT_MAC_CFM}
  60.     INLINE $A9E6;
  61.     {$ENDC}
  62.  
  63. {$ALIGN RESET}
  64. {$POP}
  65.  
  66. {$SETC UsingIncludes := PackagesIncludes}
  67.  
  68. {$ENDC} {__PACKAGES__}
  69.  
  70. {$IFC NOT UsingIncludes}
  71.  END.
  72. {$ENDC}
  73.